3.574 \(\int \frac{x^6}{(a+b x^3)^{2/3}} \, dx\)

Optimal. Leaf size=38 \[ \frac{x^7 \sqrt [3]{a+b x^3} \, _2F_1\left (1,\frac{8}{3};\frac{10}{3};-\frac{b x^3}{a}\right )}{7 a} \]

[Out]

(x^7*(a + b*x^3)^(1/3)*Hypergeometric2F1[1, 8/3, 10/3, -((b*x^3)/a)])/(7*a)

________________________________________________________________________________________

Rubi [A]  time = 0.0158768, antiderivative size = 51, normalized size of antiderivative = 1.34, number of steps used = 2, number of rules used = 2, integrand size = 15, \(\frac{\text{number of rules}}{\text{integrand size}}\) = 0.133, Rules used = {365, 364} \[ \frac{x^7 \left (\frac{b x^3}{a}+1\right )^{2/3} \, _2F_1\left (\frac{2}{3},\frac{7}{3};\frac{10}{3};-\frac{b x^3}{a}\right )}{7 \left (a+b x^3\right )^{2/3}} \]

Antiderivative was successfully verified.

[In]

Int[x^6/(a + b*x^3)^(2/3),x]

[Out]

(x^7*(1 + (b*x^3)/a)^(2/3)*Hypergeometric2F1[2/3, 7/3, 10/3, -((b*x^3)/a)])/(7*(a + b*x^3)^(2/3))

Rule 365

Int[((c_.)*(x_))^(m_.)*((a_) + (b_.)*(x_)^(n_))^(p_), x_Symbol] :> Dist[(a^IntPart[p]*(a + b*x^n)^FracPart[p])
/(1 + (b*x^n)/a)^FracPart[p], Int[(c*x)^m*(1 + (b*x^n)/a)^p, x], x] /; FreeQ[{a, b, c, m, n, p}, x] &&  !IGtQ[
p, 0] &&  !(ILtQ[p, 0] || GtQ[a, 0])

Rule 364

Int[((c_.)*(x_))^(m_.)*((a_) + (b_.)*(x_)^(n_))^(p_), x_Symbol] :> Simp[(a^p*(c*x)^(m + 1)*Hypergeometric2F1[-
p, (m + 1)/n, (m + 1)/n + 1, -((b*x^n)/a)])/(c*(m + 1)), x] /; FreeQ[{a, b, c, m, n, p}, x] &&  !IGtQ[p, 0] &&
 (ILtQ[p, 0] || GtQ[a, 0])

Rubi steps

\begin{align*} \int \frac{x^6}{\left (a+b x^3\right )^{2/3}} \, dx &=\frac{\left (1+\frac{b x^3}{a}\right )^{2/3} \int \frac{x^6}{\left (1+\frac{b x^3}{a}\right )^{2/3}} \, dx}{\left (a+b x^3\right )^{2/3}}\\ &=\frac{x^7 \left (1+\frac{b x^3}{a}\right )^{2/3} \, _2F_1\left (\frac{2}{3},\frac{7}{3};\frac{10}{3};-\frac{b x^3}{a}\right )}{7 \left (a+b x^3\right )^{2/3}}\\ \end{align*}

Mathematica [A]  time = 0.0090277, size = 51, normalized size = 1.34 \[ \frac{x^7 \left (\frac{b x^3}{a}+1\right )^{2/3} \, _2F_1\left (\frac{2}{3},\frac{7}{3};\frac{10}{3};-\frac{b x^3}{a}\right )}{7 \left (a+b x^3\right )^{2/3}} \]

Antiderivative was successfully verified.

[In]

Integrate[x^6/(a + b*x^3)^(2/3),x]

[Out]

(x^7*(1 + (b*x^3)/a)^(2/3)*Hypergeometric2F1[2/3, 7/3, 10/3, -((b*x^3)/a)])/(7*(a + b*x^3)^(2/3))

________________________________________________________________________________________

Maple [F]  time = 0.029, size = 0, normalized size = 0. \begin{align*} \int{{x}^{6} \left ( b{x}^{3}+a \right ) ^{-{\frac{2}{3}}}}\, dx \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(x^6/(b*x^3+a)^(2/3),x)

[Out]

int(x^6/(b*x^3+a)^(2/3),x)

________________________________________________________________________________________

Maxima [F]  time = 0., size = 0, normalized size = 0. \begin{align*} \int \frac{x^{6}}{{\left (b x^{3} + a\right )}^{\frac{2}{3}}}\,{d x} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x^6/(b*x^3+a)^(2/3),x, algorithm="maxima")

[Out]

integrate(x^6/(b*x^3 + a)^(2/3), x)

________________________________________________________________________________________

Fricas [F]  time = 0., size = 0, normalized size = 0. \begin{align*}{\rm integral}\left (\frac{x^{6}}{{\left (b x^{3} + a\right )}^{\frac{2}{3}}}, x\right ) \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x^6/(b*x^3+a)^(2/3),x, algorithm="fricas")

[Out]

integral(x^6/(b*x^3 + a)^(2/3), x)

________________________________________________________________________________________

Sympy [C]  time = 1.13566, size = 37, normalized size = 0.97 \begin{align*} \frac{x^{7} \Gamma \left (\frac{7}{3}\right ){{}_{2}F_{1}\left (\begin{matrix} \frac{2}{3}, \frac{7}{3} \\ \frac{10}{3} \end{matrix}\middle |{\frac{b x^{3} e^{i \pi }}{a}} \right )}}{3 a^{\frac{2}{3}} \Gamma \left (\frac{10}{3}\right )} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x**6/(b*x**3+a)**(2/3),x)

[Out]

x**7*gamma(7/3)*hyper((2/3, 7/3), (10/3,), b*x**3*exp_polar(I*pi)/a)/(3*a**(2/3)*gamma(10/3))

________________________________________________________________________________________

Giac [F]  time = 0., size = 0, normalized size = 0. \begin{align*} \int \frac{x^{6}}{{\left (b x^{3} + a\right )}^{\frac{2}{3}}}\,{d x} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x^6/(b*x^3+a)^(2/3),x, algorithm="giac")

[Out]

integrate(x^6/(b*x^3 + a)^(2/3), x)